/************************************************************
**
** Application: CJLib
**
** Title:       h.fonts
**
*************************************************************/

#ifndef FONTS___H
#define FONTS___H


#define RETURN_MPTS      0
#define RETURN_DRAWUNITS 1
#define RETURN_OSUNITS   2

/* exported variables */


/* exported functions */
extern void FontL_scan_string ( font_f fhandle, char *text, font_string_flags flags,
                                int x, int y, os_trfm *trfm, char **split_point,
                                int *x_out, int *y_out, int *length_out,
                                os_box *box );

extern void FontL_string_ht_and_wid ( font_f fhandle,
                               char *text, int *ht, int *wid, int return_units );

extern void FontL_string_bbox ( font_f fhandle, char *text, os_trfm *trfm, os_box *box );

#endif






